home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / src / version.h < prev    next >
Text File  |  1997-07-18  |  2KB  |  66 lines

  1. /*
  2.  
  3. Copyright (C) 1996 John W. Eaton
  4.  
  5. This file is part of Octave.
  6.  
  7. Octave is free software; you can redistribute it and/or modify it
  8. under the terms of the GNU General Public License as published by the
  9. Free Software Foundation; either version 2, or (at your option) any
  10. later version.
  11.  
  12. Octave is distributed in the hope that it will be useful, but WITHOUT
  13. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  15. for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with Octave; see the file COPYING.  If not, write to the Free
  19. Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20.  
  21. */
  22.  
  23. /* Modified by Klaus Gebhardt, 1996 */
  24.  
  25. #if defined (__EMX__) && defined (OS2)
  26. #define OCTAVE_VERSION "2.0.9"
  27. #define OCTAVE_OS2_PATCHLEVEL "2.09-b03"
  28.  
  29. #define OCTAVE_COPYRIGHT \
  30. "Copyright (C) 1996, 1997 John W. Eaton.\n\
  31. OS/2-Port by Klaus Gebhardt, 1996 - 1997."
  32.  
  33. #define OCTAVE_NAME_AND_VERSION \
  34. "Octave " OCTAVE_VERSION " for OS/2 2.x, Warp 3 and Warp 4.\n(Patchlevel " \
  35. OCTAVE_OS2_PATCHLEVEL ")"
  36.  
  37. #define OCTAVE_NAME_VERSION_AND_COPYRIGHT \
  38.   OCTAVE_NAME_AND_VERSION ".\n" OCTAVE_COPYRIGHT "\n\
  39. This is free software with ABSOLUTELY NO WARRANTY."
  40.  
  41. #define OCTAVE_STARTUP_MESSAGE \
  42.   OCTAVE_NAME_VERSION_AND_COPYRIGHT "\n\
  43. For details, type `warranty'."
  44. #else
  45. #define OCTAVE_VERSION "2.0.9"
  46.  
  47. #define OCTAVE_COPYRIGHT \
  48.   "Copyright (C) 1996, 1997 John W. Eaton."
  49.  
  50. #define OCTAVE_NAME_AND_VERSION \
  51.   "Octave, version " OCTAVE_VERSION " (" TARGET_HOST_TYPE ")"
  52.  
  53. #define OCTAVE_NAME_VERSION_AND_COPYRIGHT \
  54.   OCTAVE_NAME_AND_VERSION ".\n" OCTAVE_COPYRIGHT "\n\
  55. This is free software with ABSOLUTELY NO WARRANTY."
  56.  
  57. #define OCTAVE_STARTUP_MESSAGE \
  58.   OCTAVE_NAME_VERSION_AND_COPYRIGHT "\n\
  59. For details, type `warranty'."
  60. #endif
  61. /*
  62. ;;; Local Variables: ***
  63. ;;; mode: C++ ***
  64. ;;; End: ***
  65. */
  66.